home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr48 / tsbat146.zip / BDIR.BAT < prev    next >
DOS Batch File  |  1992-12-14  |  444b  |  14 lines

  1. @echo off
  2. echo.
  3. echo ┌───────────────────────────────────────────────────┐
  4. echo │ BDIR Bare display and count of directories        │
  5. echo │ By Prof. Timo Salmi, ts@uwasa.fi, Mon 14-Dec-1992 │
  6. echo └───────────────────────────────────────────────────┘
  7.  
  8. dir %1 | find "Volume in drive" > tmp$$$
  9. dir %1 | find "Directory of" >> tmp$$$
  10. dir %1 | find "<DIR>" >> tmp$$$
  11. dir %1 | find /c "<DIR>" >> tmp$$$
  12. more < tmp$$$
  13. del tmp$$$ > nul
  14.